home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / except.zip / B4DMSG.H < prev    next >
Text File  |  1993-03-03  |  1KB  |  66 lines

  1. //
  2. //  Values are 32 bit values layed out as follows:
  3. //
  4. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  5. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  6. //  +---+-+-+-----------------------+-------------------------------+
  7. //  |Sev|C|R|     Facility          |               Code            |
  8. //  +---+-+-+-----------------------+-------------------------------+
  9. //
  10. //  where
  11. //
  12. //      Sev - is the severity code
  13. //
  14. //          00 - Success
  15. //          01 - Informational
  16. //          10 - Warning
  17. //          11 - Error
  18. //
  19. //      C - is the Customer code flag
  20. //
  21. //      R - is a reserved bit
  22. //
  23. //      Facility - is the facility code
  24. //
  25. //      Code - is the facility's status code
  26. //
  27. //
  28. // Define the facility codes
  29. //
  30.  
  31.  
  32. //
  33. // Define the severity codes
  34. //
  35.  
  36.  
  37. //
  38. // MessageId: B4D_ERROR_LOAD_LIBRARY_FAILED
  39. //
  40. // MessageText:
  41. //
  42. //  Cannot load Dynamic Link Library.
  43. //
  44. #define B4D_ERROR_LOAD_LIBRARY_FAILED    0xCFFE0001L
  45.  
  46. //
  47. // MessageId: B4D_ERROR_PAINT_FAILED
  48. //
  49. // MessageText:
  50. //
  51. //  Cannot Paint.
  52. //
  53. #define B4D_ERROR_PAINT_FAILED           0xCFFE0002L
  54.  
  55. //
  56. // MessageId: B4D_ERROR_DEMO
  57. //
  58. // MessageText:
  59. //
  60. //  This is a demo error.
  61. //  String arg = "%1!s!"
  62. //  Numeric arg = %2!ld! 0x%2!lX!
  63. //
  64. #define B4D_ERROR_DEMO                   0xCFFE0003L
  65.  
  66.